home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
Atari Mega Archive 2
/
Atari Mega Archive CD - Volume 2.iso
/
minix
/
up1510b.tgz
/
up1510b
/
src
/
lib
/
posix
/
stat.c
< prev
next >
Wrap
C/C++ Source or Header
|
1990-07-19
|
202b
|
11 lines
#include <lib.h>
#include <sys/stat.h>
PUBLIC int stat(name, buffer)
_CONST char *name;
struct stat *buffer;
{
return(callm1(FS, STAT, len(name), 0, 0,
(char *)name, (char *)buffer, NIL_PTR));
}